Console.ReadLine C# การรับค่า Input จากผู้ใช้งาน
บทความวันที่ 29 พฤศจิกายน 2555
Console.ReadLine คือ คำสั่งสำหรับการรับค่า (Input) จากผู้ใช้งานผ่าน Console Application โดยสามารถรับค่าใด ๆ ก็ได้ผ่านการกรอกข้อมูลจากผู้ใช้งาน
ภาพรวมของ Console.ReadLine
1. ใช้คำสั่ง Console.ReadLine สำหรับการรับค่าจากผู้ใช้งาน
2. ประยุกต์ใช้งานรวมกับ Variable เพื่อเก็บค่าจากการกรอกของผู้ใช้งาน
ตัวอย่างโปรแกรม
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.SqlClient;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, What is you name ??");
string name = Console.ReadLine();
Console.WriteLine("Hello, {0} :)", name);
Console.ReadLine();
}
}
}
ผลลัพธ์
คำค้นหา Console.ReadLine C# การรับค่า Input จากผู้ใช้งาน, รับเขียนเว็บ, รับทำเว็บ, เรียนเขียนโปรแกรม